home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #3
/
Amiga Plus CD - 2002 - No. 03.iso
/
AmigaPlus
/
Tools
/
Development
/
renderlib40
/
src
/
lib_global.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2002-12-20
|
342 b
|
22 lines
#include "lib_init.h"
#include "lib_debug.h"
#include <proto/exec.h>
struct Library *UtilityBase = NULL;
LIBAPI BOOL Library_Init(LIB_BASE_T *LibBase)
{
UtilityBase = OpenLibrary("utility.library", 0);
if (UtilityBase)
{
return TRUE;
}
return FALSE;
}
LIBAPI void Library_Exit(LIB_BASE_T *LibBase)
{
CloseLibrary(UtilityBase);
}